php forum
php mysql forum
php mysql smarty
 
Page 2 of 2 < 1 2
Topic Options
#318322 - 11/23/09 07:09 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 169
Loc: Lutz,FL,USA
greasemonky????????????

Top
#318323 - 11/23/09 07:18 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 488
Loc: SoCal
Firefox add-on.. it allows me to change the CSS for any site.. in this case, i use it to not allow the code tags to screw up the forum screens...

for a place like ubbdev, this should be a big dealio, since when code is posted, the thread (many times) blows up.. wink
_________________________

Top
#318324 - 11/23/09 07:26 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 169
Loc: Lutz,FL,USA
Okay I give up. Ding
Where is that addon at. Ding
Can't seem to find it. Ding
And how do you use it. Ding

Top
#318325 - 11/23/09 07:29 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 488
Loc: SoCal
https://addons.mozilla.org/en-US/firefox/addon/748

they have a forum on 'how to', but its quite easy (for a geek type)
_________________________

Top
#318326 - 11/23/09 07:37 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 169
Loc: Lutz,FL,USA
I guess I need to restart to see something to use.

Top
#318327 - 11/24/09 03:04 AM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
Gizmo Online   shocked

Wizard

Registered: 01/10/00
Posts: 5287
Loc: Portland, OR, USA
So, propose a css edit, with code, to the "Developers Discussion" forum and I'll nag AA tipsy
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#318328 - 11/24/09 04:07 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Gizmo]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 169
Loc: Lutz,FL,USA
Greasemonkey with the Pre-Wrap script is now my best buddy.
No more typewriter mode.
It fixed this topic at least
It does run a little slow when it addresses the long text first draw,but at least it is readable. And I don't hear the ding anymore.

Top
#318335 - 12/01/09 05:19 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 169
Loc: Lutz,FL,USA
Good job Gizmo. Especially since correcting the export script. For what ever reason it would not work when first posted. We did have some off line discussion on a possible bug on the export, But it works now.

But since vimeo does not have a redirect for the url.
I prefer to use Sirdude's method. Not due to any security issues, but so it accepts www.vimeo.com and vimeo.com and http:// requests as well.
I posted some issues with this code but you really need to read Sirdudes complete post to figure out what is going on with his code. But it does work also.

Top
#318482 - 02/06/10 10:46 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
lightningrod Offline
User

Registered: 10/17/09
Posts: 41
I still do not understand what the final answer was here.

I re-read this thread and cannot comprehend what the final answer was here

The Import Custom Tag button does not work for me. I get an error

So I was trying to just type it in manually

Also, the Liveleak embed does not work

And my Google Vids embed does not work

Only my youtube embed works

Top
#318484 - 02/07/10 10:28 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: lightningrod]
Gizmo Online   shocked

Wizard

Registered: 01/10/00
Posts: 5287
Loc: Portland, OR, USA
Well, if all of them don't work (including the stock ones with the UBB) I think theres a problem other than the tags... Every site is independent of the others, so if they all don't work it's something other than the tags...

So, go try one of the stock UBB tags and let me know.

Also, how are you importing? Are you coping the code(s) to a text file and importing that? IF so, post all of what is in a text file you're trying to import and I'll try to diagnose what's the problem.
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#318486 - 02/08/10 12:14 AM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 488
Loc: SoCal
Originally Posted By: sirdude
well, you prolly have the markup part wrong..

Code:
<object width="425" height="350">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=\\2&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" />
<embed src="http://vimeo.com/moogaloop.swf?clip_id=\\2&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="425" height="350">
</embed>
</object>


works with
Code:
(.*vimeo.com/)(\d{5,20})


note, the 1st part captures into \\1 and the 2nd part (what you want) captures into 2nd part.. \\2 (which is in the embed code)..

very important to do that and it works fine, lasts a long time.. i have it on 3 forums wink

if your markup is using \\1, it will essentially 'eat up' all the good stuff and never spit out any reasonable markup wink


this works.. i use it .. smile
_________________________

Top
#318487 - 02/08/10 01:12 AM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
Gizmo Online   shocked

Wizard

Registered: 01/10/00
Posts: 5287
Loc: Portland, OR, USA
Well, the original works, I use it... seems his issues aren't from the tag not working, since he said elsewhere that others aren't working
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
Page 2 of 2 < 1 2


Moderator:  sirdude 
Who's Online
0 registered (), 25 Guests and 13 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Ubb - Buy It!
best forum software
Latest Posts
I want to create a Self Search mod [Question]
by lightningrod
03/10/10 09:04 PM
If I create a new script, can I just upload it?
by lightningrod
03/10/10 05:35 PM
Notepad Creates Errors when working with PHP
by lightningrod
03/10/10 05:01 PM
Question on Adding a New Script ?
by lightningrod
03/10/10 06:39 AM
Disable Watch List option
by Mike_Tabat
03/09/10 01:27 PM
[7.x] [Pre-7.3] [Final] pJIRC Addon v0.5
by Gizmo
02/27/10 05:07 PM
How to Be a Great Host
by pinku
02/19/10 02:47 AM
New Mods
Disable Watch List option
by Mike_Tabat
02/18/10 09:14 AM
[7.x] Generic Page Outside of forum directory
by
01/14/07 10:58 PM
[7.x] [Pre-7.3] [Final] pJIRC Addon v0.5
by
07/30/06 10:42 PM
Newest Members
joshuasm02, Chosen, Vick, Bartman, Infinity Master
13496 Registered Users
Top Posters
AllenAyres 25554
JoshPet 11330
Rick 8373
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438
(Views)Popular Topics
Known public proxy servers 1028046
Finished-[6.5.2] Games Arcade Deluxe v1.9 327222
Integrated Index Page (IIP) 5.3.1 279924
Integrated Index Page (IIP) 5.1.1 279403
TLD Bv2.1 Released - Threads Links Directory 270427
[6.0x] Who's Online 4.0.0 [Finished] 230365
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 217518
[6.3.x] [beta] Hit Hack 2.0 179339
FlashChat & UBB.threads 161010
[7.x] Gizmo's Embedding BBCode (Pre UBB.T7.3) 154650
Forum Stats
13496 Members
59 Forums
37114 Topics
290378 Posts

Max Online: 686 @ 06/28/07 07:04 AM
Featured Member
Registered: 02/16/10
Posts: 1

 

 

 
fusionbb message board php hacks